From: Raimond Spekking Date: Mon, 12 Jan 2009 17:16:47 +0000 (+0000) Subject: Bug 16991: Fix regression: Add class for right justify figures again. Class is define... X-Git-Tag: 1.31.0-rc.0~43451 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=8fefcc54b29fc023ef543b59bed05f0d5b35cd4b;p=lhc%2Fweb%2Fwiklou.git Bug 16991: Fix regression: Add class for right justify figures again. Class is defined in shared.css already. --- diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index 414f7bee47..109c5c3025 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -108,7 +108,7 @@ class SpecialStatistics extends SpecialPage { } return Xml::openElement( 'tr', $trExtraParams ) . Xml::openElement( 'td' ) . $text . Xml::closeElement( 'td' ) . - Xml::openElement( 'td' ) . $number . Xml::closeElement( 'td' ) . + Xml::openElement( 'td', array( 'class' => 'mw-statistics-numbers' ) ) . $number . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ); }